From 335c070f9b97d840252dc5806d8bf2105deb1c40 Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Tue, 23 Jun 2015 10:54:39 +0200 Subject: [PATCH] GtkHeaderBar: reduce minimum title width The minimum title width affects the minimum window width for CSD windows. To allow smaller windows like without CSD reduce it a bit (276px vs 156px min width) https://bugzilla.gnome.org/show_bug.cgi?id=751341 --- gtk/gtkheaderbar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkheaderbar.c b/gtk/gtkheaderbar.c index bf9529530e..1e7bc5aa95 100644 --- a/gtk/gtkheaderbar.c +++ b/gtk/gtkheaderbar.c @@ -51,7 +51,7 @@ */ #define DEFAULT_SPACING 6 -#define MIN_TITLE_CHARS 20 +#define MIN_TITLE_CHARS 5 struct _GtkHeaderBarPrivate { -- 2.30.2